home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d10 / pcm_d1.arc / UNFOLD.BAT < prev    next >
DOS Batch File  |  1989-06-12  |  2KB  |  96 lines

  1. echo off
  2. cls
  3. echo  
  4. echo  
  5. echo                           ═════════════════════════════
  6. echo                           THE PERSONAL CONTACTS MANAGER
  7. echo                           ═════════════════════════════
  8. echo  
  9. echo  
  10. echo  
  11. echo                          Archived Hard Disk Installation
  12. echo                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  13. echo  
  14. echo                      This program unarcs your system from
  15. echo                        your floppy disk onto the C drive.
  16. echo  
  17. echo  
  18. echo  
  19. echo                       Press the ─┘ or ENTER key when ready.
  20. echo  
  21. echo  
  22. echo  
  23. echo                  To abort at any time, press CTRL and C together.
  24. echo  
  25. echo                       (Note: Own copy of PKXARC required.)
  26.  
  27.  
  28.  
  29. pause >NUL
  30.  
  31. if not exist a:pkxarc.com goto NOARC
  32.  
  33. c:
  34. cd c:\
  35. md contacts                                        >NUL
  36. cd contacts                                        >NUL
  37.  
  38. cls
  39. echo  
  40. echo                         Your files are being installed.
  41. echo  
  42. echo                      Please watch and wait a few minutes...
  43. copy a:\*.*     c:\contacts\*.*                    >NUL
  44.  
  45.  
  46. pkxarc contacts.arc
  47.  
  48.  
  49.  
  50. copy c:\contacts\contacts.bat c:\contacts.bat        >NUL
  51. copy c:\contacts\contac.bat   c:\contac.bat          >NUL
  52. copy c:\contacts\phone.bat    c:\phone.bat           >NUL
  53. copy c:\contacts\tofloppy.bat c:\tofloppy.bat        >NUL
  54. copy c:\contacts\manual.bat   c:\manual.bat          >NUL
  55. copy c:\contacts\setfig.bat   c:\setfig.bat          >NUL
  56. copy c:\contacts\archive.bat  c:\archive.bat         >NUL
  57. copy c:\contacts\Y            c:\Y                   >NUL
  58. copy c:\contacts\nosnow.bat   c:\nosnow.bat          >NUL
  59.  
  60. cd c:\                                               >NUL
  61. cls
  62. echo  
  63. echo  
  64. echo                      The installation was successful.
  65. echo  
  66. echo  
  67. echo  
  68. echo  
  69. echo                     To start the program, simply type:
  70. echo  
  71. echo                                 CONTACTS
  72. echo  
  73. echo                      and press your ─┘ or ENTER key.
  74. echo  
  75. echo  
  76. echo  
  77. goto END
  78.  
  79. :NOARC
  80. c:
  81. cd c:\
  82. cls
  83. echo  
  84. echo                       A program called PKXARC.COM is required on
  85. echo                       your floppy disk to unarchive the program file.
  86. echo  
  87. echo                       Now press your ─┘ or ENTER key to exit please.
  88. pause >NUL
  89. echo  
  90. GOTO END
  91.  
  92.  
  93.  
  94.  
  95. :END
  96.